home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
PAS_0693
/
HIDECURS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-06-30
|
689b
|
27 lines
{─ Fido Pascal Conference ────────────────────────────────────────────── PASCAL ─
Msg : 606 of 614
From : Bill Buchanan 1:2410/318.0 16 Jun 93 10:17
To : Terry Bennett
Subj : TP7.0
────────────────────────────────────────────────────────────────────────────────
-=> Quoting Terry Bennett to all <=-
TB> Heh There
TB> Can anyone tell me how to hide the cursor while using a readln
TB> command in TP7.0?
Here's about the quickest way I know of...}
procedure HideCursor; Assembler;
asm
MOV ax,$0100
MOV cx,$2607
INT $10
end;
procedure ShowCursor; Assembler;
asm
MOV ax,$0100
MOV cx,$0506
INT $10
end;